home *** CD-ROM | disk | FTP | other *** search
/ Educational Software Cooperative 4 / Educational Software Cooperative 4.iso / olympi16 / install.bat < prev    next >
DOS Batch File  |  1995-12-14  |  897b  |  37 lines

  1. rem INSTALL.BAT
  2. echo off
  3. cls
  4. echo.
  5. echo.              INSTALL TO HARD DISK (C:)
  6. echo.
  7. echo.  This INSTALL.BAT file will copy all program files to a 
  8. echo.  subdirectory on a hard disk C from a floppy in drive A.
  9. echo.  It does the following:
  10. echo.  
  11. echo.  C:              change to the C drive
  12. echo.  md OLYMPIAD     make the subdirectory OLYMPIAD
  13. echo.  cd OLYMPIAD     change the current directory to OLYMPIAD
  14. echo.  xcopy A:\*.*    copy everything on the A drive to OLYMPIAD
  15. echo.
  16. echo.  The above commands can also be entered by hand, as is, or
  17. echo.  changed for your drive letters and desired subdirectory.
  18. echo.  Press the Print Screen Key to print a copy for reference.
  19. echo.
  20. choice  /c:YN  ...Install...
  21.  
  22. if errorlevel 2 goto END
  23. if errorlevel 1 goto DOIT
  24.  
  25. :DOIT
  26. rem echo.  doit
  27. C:
  28. md OLYMPIAD
  29. cd OLYMPIAD
  30. xcopy A:\*.*
  31. goto END
  32.  
  33. :END
  34. rem echo.  end
  35.  
  36.  
  37.